home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / WV Adobe ImageReady 3.0.xpl < prev    next >
Text File  |  2002-04-06  |  1KB  |  49 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="5"
  3. "COUNT"="1"
  4. "UIPATH"="Program Options\Other Programs\Adobe\ImageReady 3.0\"
  5. "NAME"="Recent files"
  6. "VERSION"="1.00"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Clear recent files list"
  9. "DESCRIPTION 1"="If you don't want other people to see the files you have open, click on the button."
  10. "DESCRIPTION 2"="For more informations about ImageReady 3.0, go to http://www.adobe.com."
  11. "AUTHOR"="FORMATMAN"
  12. "CONTACTURL"="http://formatland.free.fr/"
  13. "COPYRIGHT"="Copyright ⌐ Formatman"
  14. "COMMENT 1"="For more informations, go to http://www.xsetup.net"
  15. "COMMENT 2"="Created by VORMELKER Werner"
  16. "COMMENT 3"="http://formatland.free.fr/"
  17. "COMMENT 4"="formatman@wanadoo.fr"
  18.  
  19. sP="HKCU\Software\Adobe\ImageReady 3.0\Preferences\RecentFiles\"
  20.  
  21.  
  22. Sub Plugin_Initialize 
  23.   If RegPathExists(sP)=false then
  24.      Disable()
  25.   end if 
  26. End Sub
  27.  
  28. Sub Plugin_CheckData(ElementIndex)
  29. End Sub
  30.  
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  if ElementIndex=1 then     
  33.     for l=1 to 30
  34.         s="File" & l
  35.         v=RegReadValue(sP & s)
  36.         
  37.         If IsEmpty(v)=false then
  38.            Call RegDeleteValue(sP & S)
  39.         end if
  40.     Next
  41.  
  42.     Call MsgInformation("List cleared !")
  43.  end if
  44.  
  45. End Sub
  46.  
  47. Sub Plugin_Terminate 
  48. End Sub
  49.